home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / bash-1.12 / dist / examples / functions / shcat < prev    next >
Encoding:
Text File  |  1991-07-07  |  54 b   |  8 lines

  1. shcat()
  2. {
  3.     while read line
  4.     do
  5.         echo "$line"
  6.     done
  7. }
  8.